std::unordered_map::end(int), std::unordered_map::cend(int)

From Cppreference

Jump to: navigation, search
​iterator end( size_type n );
(C++0x feature)
​const_iterator end( size_type n ) const;
(C++0x feature)
​const_iterator cend( size_type n ) const;
(C++0x feature)

Returns an iterator to the element following the last element of the bucket with index n. . This element acts as a placeholder, attempting to access it results in undefined behavior.

Contents

Parameters

n - the index of the bucket to access

Return value

iterator to the element following the last element

Complexity

constant

See also

begin(int)
cbegin(int)
returns an iterator to the beginning of the specified bucked
(public member function)
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages